home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 06 - 1990 / 06.08 Aug 90 / Test Object Source / CWaveDoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-31  |  533 b   |  24 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CWaveDoc.h
  3.  *
  4.  *    © Symantec - USE FOR TEST ONLY! - (stripped down from Starter appl)
  5.  *
  6.  ****/
  7.  
  8. #define    _H_CWaveDoc            /* Include this file only once */
  9. #include <CDocument.h>
  10.  
  11. struct CWaveDoc : CDocument {
  12.  
  13.                                     /** Construction/Destruction **/
  14.     void        IWaveDoc(CBureaucrat *aSupervisor, Boolean printable);
  15.  
  16.     void        NewFile(void);
  17.     void        OpenFile(SFReply *macSFReply);
  18.     void        BuildWindow(Handle theData);
  19.     
  20.                                     /** Filing **/
  21.     Boolean        DoSave(void);
  22.     Boolean        DoSaveAs(SFReply *macSFReply);
  23.     void        DoRevert(void);
  24. };